home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 23 / AACD 23.iso / AACD / Programming / Wipeout / source / system_headers.h < prev    next >
C/C++ Source or Header  |  1998-04-12  |  1KB  |  49 lines

  1. /*
  2.  * $Id: system_headers.h 1.3 1998/04/12 17:30:05 olsen Exp olsen $
  3.  *
  4.  * :ts=4
  5.  *
  6.  * Wipeout -- Traces and munges memory and detects memory trashing
  7.  *
  8.  * Written by Olaf `Olsen' Barthel <olsen@sourcery.han.de>
  9.  * Public Domain
  10.  */
  11.  
  12. #ifndef _SYSTEM_HEADERS_H
  13. #define _SYSTEM_HEADERS_H 1
  14.  
  15. /******************************************************************************/
  16.  
  17. #include <exec/execbase.h>
  18. #include <exec/memory.h>
  19. #include <exec/libraries.h>
  20.  
  21. #include <devices/timer.h>
  22.  
  23. #include <dos/dosextens.h>
  24. #include <dos/dostags.h>
  25. #include <dos/rdargs.h>
  26.  
  27. #include <clib/utility_protos.h>
  28. #include <clib/timer_protos.h>
  29. #include <clib/exec_protos.h>
  30. #include <clib/dos_protos.h>
  31. #include <clib/alib_protos.h>
  32.  
  33. #include <pragmas/exec_sysbase_pragmas.h>
  34. #include <pragmas/utility_pragmas.h>
  35. #include <pragmas/timer_pragmas.h>
  36. #include <pragmas/dos_pragmas.h>
  37.  
  38. /******************************************************************************/
  39.  
  40. #define USE_BUILTIN_MATH
  41. #include <string.h>
  42. #include <stdarg.h>
  43. #include <stddef.h>
  44. #include <stdlib.h>
  45.  
  46. /******************************************************************************/
  47.  
  48. #endif    /* _SYSTEM_HEADERS_H */
  49.